\\ Written by Donald T. Becker (dtbecker@prolog.net) IRC: StarDustr
// Please mail any bug reports/comments to the above address with a subject
\\ header of MCF.AMIRX.
//
\\ ** What to do with this file?
// Put this script in REXX: It will be used by MCF.AMIRX.
*/
;parse arg MCFenv junk;address value(MCFenv);fname="MCF:MCF.Ops";call open("Input",fname,'R');xx=readln("Input");do until eof("Input");parse value xx with Auth User Host Mchans;User=left(User,25);Host=left(Host,20);if Auth ~="PRIVCH" then;"echo P="d2c(27)"««MCF» User "User "Host "Host "Auth "Auth;if Mchans ~="" then;do;do cnt=1 by 1 until Mchans="";parse value Mchans with Chan Auth Mchans;Chan=left(Chan,46);"echo P="d2c(27)"««MCF» + Channel: "Chan"Auth "Auth;end cnt;end;xx=readln("Input");end;call close("Input");exit